home *** CD-ROM | disk | FTP | other *** search
- /*
- * LPC subroutine declarations
- */
-
- #define LPC_FILTORDER 10
-
- typedef struct {
- unsigned short period;
- unsigned char gain;
- char filler_size_is_1;
- char k[LPC_FILTORDER];
- } lpcparams_t;
-
- extern int lpc_init(int framelen);
- extern void lpc_analyze(unsigned char *buf, lpcparams_t *params);
- extern int lpc_synthesize(lpcparams_t *params, double speed, unsigned char *buf);
-